Noemax FastInfoset.NET
WriteValue(Decimal[]) Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class > WriteValue Method : WriteValue(Decimal[]) Method






value
The array containing a single or multiple decimal values.

Encodes a single or multiple decimal values using Fast Infoset's binary encoding and writes the result at the current position in the element content.

Syntax

Visual Basic (Declaration) 
Public Overloads Shadows Sub WriteValue( _
   ByVal value() As Decimal _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim value() As Decimal
 
instance.WriteValue(value)
C# 
public new void WriteValue( 
   decimal[] value
)
Delphi 
public procedure WriteValue( 
    value: Currencyarray of
); 
JScript 
public hide function WriteValue( 
   value : decimal[]
);
Managed Extensions for C++ 
public: new void WriteValue( 
   decimal[]* value
) 
C++/CLI 
public:
new void WriteValue( 
   array<decimal>^ value
) 

Parameters

value
The array containing a single or multiple decimal values.

Remarks

This method encodes a single or multiple decimal values using Fast Infoset's binary encoding and writes the result at the current position in the content.

See Also